home *** CD-ROM | disk | FTP | other *** search
/ OpenGL Superbible (2nd Edition) / OpenGL SuperBible e2.iso / book / Chap06 / MATLIGHT / MATLIGHT.H < prev    next >
Encoding:
C/C++ Source or Header  |  1996-05-26  |  1.0 KB  |  45 lines

  1. // matlight.h : main header file for the MATLIGHT application
  2. //
  3. #ifndef __MATLIGHT__
  4. #define __MATLIGHT__
  5.  
  6.  
  7. #ifndef __AFXWIN_H__
  8.     #error include 'stdafx.h' before including this file for PCH
  9. #endif
  10.  
  11. #include "resource.h"       // main symbols
  12.  
  13. #define WM_UPDATE    WM_USER+1000
  14.  
  15. /////////////////////////////////////////////////////////////////////////////
  16. // CMatlightApp:
  17. // See matlight.cpp for the implementation of this class
  18. //
  19.  
  20. class CMatlightApp : public CWinApp
  21. {
  22. public:
  23.     CMatlightApp();
  24.  
  25. // Overrides
  26.     // ClassWizard generated virtual function overrides
  27.     //{{AFX_VIRTUAL(CMatlightApp)
  28.     public:
  29.     virtual BOOL InitInstance();
  30.     //}}AFX_VIRTUAL
  31.  
  32. // Implementation
  33.  
  34.     //{{AFX_MSG(CMatlightApp)
  35.     afx_msg void OnAppAbout();
  36.         // NOTE - the ClassWizard will add and remove member functions here.
  37.         //    DO NOT EDIT what you see in these blocks of generated code !
  38.     //}}AFX_MSG
  39.     DECLARE_MESSAGE_MAP()
  40. };
  41.  
  42.  
  43. /////////////////////////////////////////////////////////////////////////////
  44. #endif
  45.